﻿/* GENERAL SETTINGS */

html,
body {
    background-color: #ffffff;
    font-family: "Montserrat", sans-serif;
    color: rgba(12, 48, 76, 1);
    font-size: 12px;
    overflow-x: hidden;
}


/* NAVBAR */

.navbar-inverse {
    background-color: #291810;
    border-color: #291810;
}

.navbar {
    border-radius: 0px;
}

.navbar {
    position: relative;
    min-height: 87px;
    margin-bottom: 40px;
    border-bottom: 5px solid #dcae0b;
}

.navbar-inverse .navbar-brand {
    color: #ffffff;
}

.navbar-brand > img {
    display: inline-block;
}

.navbar-brand > img {
    vertical-align: middle;
    width: 80px;
}

img {
    border: 0;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 0px 6px;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    text-shadow: 1px 5px 10px #000;
}


/* LOGIN PAGE */

.panel-default {
    border-color: #6f621c;
    box-shadow: 0px 0px 10px 0px #000;
    background-color: transparent;
}

    .panel-default > .panel-heading {
        color: rgba(12, 48, 76, 1);
        background-color: rgba(184, 175, 163, 1);
        border-color: #ddd;
        border-bottom: 3px solid #dcae0b;
        font-weight: bold;
    }

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
}

form {
    border: 2px solid lightgray;
    padding: 10px;
    border-radius: 8px;
    height: 300px;
    margin-bottom: 20px;
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: rgba(12, 48, 76, 1);
    background-color: rgb(241, 241, 241);
    border: 2px solid rgb(207, 207, 207);
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:hover {
    border: 1px solid rgba(184, 175, 163, 1);
    background: rgba(184, 175, 163, 1);
    color: #000;
}


#virtualKbCb {
    width: 10%;
    margin-left: -6px;
    margin-bottom: 10px;
}

.login-link {
    color: rgba(122, 109, 41, 1);
}

.login-img img {
    border: 2px solid lightgrey;
    padding: 10px;
    width: 430px;
    height: 150px;
    margin-left: 20px;
    margin-top: 65px;
    border-radius: 8px;
}

.btn-default {
    color: #000;
    background-color: #e9cd4b;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 2px 0 0;
    margin-top: 1px\9;
    line-height: normal;
}

blink {
    font-weight: bold;
    color: rgba(12, 48, 76, 1);
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/*FORGOT PAGE*/

.forgot-image img {
    width: 190px;
    margin-top: 15px;
    margin-left: 60px;
}


/* VIRTUAL KEYPAD */

/******keyboard*******/

.virtual-keyboard {
    border: 2px solid lightgray;
    border-radius: 8px;
    height: 300px;
}

ul.keyboard {
    list-style-type: none;
    background-color: #fff;
    border-radius: 5px;
    padding: 0;
    width: 100%;
    height: 50%;
}

ul.keyboard-disabled {
    pointer-events: none;
    list-style-type: none;
    background-color: #fff;
    border-radius: 5px;
    padding: 0;
    width: 100%;
    height: 50%;
}

.keyboard li {
    cursor: pointer;
    display: inline;
    float: left;
    height: 18%;
    line-height: 38px;
    padding: 0;
    margin: 0.3% 0.6% 0.6% 0.2%;
    background-color: rgba(220, 174, 11, 1);
    color: #272727;
    vertical-align: middle;
    text-align: center;
    border-radius: 8px;
    font-size: 1vw;
    /** margin: auto; **/
    /* -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

.char {
    width: 5.75%;
    -webkit-transition: background-color 100ms;
}

.tab {
    width: 20%;
    line-height: 0;
}

.at {
    width: 7.2%;
}

.last {
    margin-right: 0%;
}

.backspace {
    width: 14%;
}

.capslock {
    width: 12%;
}

    .capslock.on {
        background-color: #4a4020;
        color: #ffffff;
    }

.return {
    width: 14%;
}

.shift {
    width: 7.2%;
}

.last {
    margin-right: 0;
}

.space {
    width: 99%;
}

.keyboard .touch {
    color: #ffffff;
    background-color: #4a4020;
}

/*FOOTER*/

.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    font-size: 11px;
    background-color: #161616;
    color: #ffffff;
    padding: 10px;
    margin-top: 50px;
    box-shadow: 0px 0px 10px 1px #000;
}

